This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
I put together a form and:
1. included the $$HTMLFrontMatter field with the !DocType value in it
2. Put the <STYLE> stuff into the HTML Head Content.
3. Put the body content as pass through HTML on the form.
It doesn't work. Am I missing something? Thanks for looking and let me know if you have any ideas.
I've even tried it in a page, treated as HTML. The code looks the same in view source, but it doesn't have rounded corners.
My code looks like this in the form:
<!DOCTYPE html><html>
<head>
<STYLE>
#rcorners1 {
border-radius: 25px;
background: #F6B364;
padding: 20px;
width: 200px;
height: 150px;
}
</STYLE>
<script language="JavaScript" type="text/javascript">
<!--
document._domino_target = "_self";
function _doClick(v, o, t, h) {
var form = document._DominoForm;
if (form.onsubmit) {
var retVal = form.onsubmit();
if (typeof retVal == "boolean" && retVal == false)
return false;
}
var target = document._domino_target;
if (o.href != null) {
if (o.target != null)
target = o.target;
} else {
if (t != null)
target = t;
}
form.target = target;
form.__Click.value = v;
if (h != null)
form.action += h;
form.submit();
return false;
}
// -->
</script>
</head>
<body text="#000000" bgcolor="#D0B1A1">
Rounded Corners using CSS3 not work... (~John Desweskia... 26.May.16) . . Which browser are you using? You s... (~Fritz Ekfoober... 26.May.16) . . . . Using IE (~John Desweskia... 26.May.16)